home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / bench / x.txt / 000036_fdc@watsun.cc.columbia.edu_Mon Oct 8 12:31:05 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  5KB  |  110 lines

  1. Article: 12846 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!fdc
  3. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.unix.unixware.misc,comp.protocols.kermit.misc
  5. Subject: Re: sco-list: Re: euro-mini-HOWTO
  6. Date: 8 Oct 2001 16:31:18 GMT
  7. Organization: Columbia University
  8. Lines: 93
  9. Message-ID: <9pskcm$b98$1@newsmaster.cc.columbia.edu>
  10. References: <3bbe46b0.27482925@news.sf.sbcglobal.net> <9pn737$it1$1@newsmaster.cc.columbia.edu> <Pine.LNX.4.33.0110080853210.10168-100000@nimbus.anzio.com>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1002558678 11560 128.59.39.2 (8 Oct 2001 16:31:18 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 8 Oct 2001 16:31:18 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.unix.unixware.misc:44440 comp.protocols.kermit.misc:12846
  16.  
  17. In article <Pine.LNX.4.33.0110080853210.10168-100000@nimbus.anzio.com>,
  18. Bob Rasmussen  <ras@anzio.com> wrote:
  19. : On 6 Oct 2001, Frank da Cruz wrote:
  20. : > ...
  21. : > In terminal sessions, it can convert between the remote character set
  22. : > (e.g. Latin-1, CP1252, whatever) and local UTF-8.  Ditto for file transfer
  23. : > with either FTP or Kermit protocol.  Just tell it:
  24. : >
  25. : >   set file character-set utf8     ; Name of local character set
  26. : >   set terminal character-set xxx  ; Name of remote character set
  27. : >
  28. : > For more on Kermit and Unicode, see:
  29. : >
  30. : >   http://www.columbia.edu/kermit/unicode.html
  31. : It's unclear from the kermit site whether a graphical version of Kermit is
  32. : available. The screen shots show one, but my impression is that it has not
  33. : been released. And it would be required in order to actually support
  34. : Unicode. Is this true?
  35. In a way, yes.  In another way, no.  I assume we're talking about Windows
  36. here, not Unix, right?
  37.  
  38. A graphical (i.e. GUI window rather than 32-bit Console window) version is
  39. due shortly:
  40.  
  41.   http://www.columbia.edu/kermit/k95next.html
  42.  
  43. The current Console version, http://www.columbia.edu/kermit/k95.html :
  44.  
  45.  . Fully supports UTF-8 in Windows NT, 2000, and XP, within the 
  46.    limitations of your font (e.g. Lucida Console, Courier New, etc).
  47.  
  48.  . Supports UTF-8 within the limitations of your console code page
  49.    in Windows 95, 98, and ME.
  50.  
  51. The GUI version will fully support UTF-8, within the limitations of the
  52. chosen font, on Windows 95, 98, ME, NT, 2000, and XP.
  53.  
  54. By "fully support UTF-8", I mean, it knows how to convert between any pair
  55. of the following character sets, one used by Windows and the other used on
  56. the remote computer:
  57.  
  58.  apl2-ibm            cp819               dg-specialgraphcs   latin4-iso
  59.  apl-2741            cp850               dg-wordprocessing   latin5-iso
  60.  apl-dyadic          cp852               dutch               latin6-iso
  61.  apl-iso             cp855               elot927-greek       latin9-iso
  62.  apl-plus-2000       cp857               elot928-greek       macintosh-latin
  63.  arabic-iso          cp858               finnish             mazovia-pc
  64.  ascii               cp862-hebrew        french              next-multinational
  65.  british             cp864               german              norwegian
  66.  canadian-french     cp866               greek-iso           portuguese
  67.  bulgaria-pc         cp869               hebrew-7            qnx-console
  68.  cp10000             cp912               hebrew-iso          short-koi
  69.  cp1051              cp913               hp-line-drawing     sni-blanks
  70.  cp1089              cp914               hp-math/technical   sni-brackets
  71.  cp1250              cp915               hp-roman8           sni-euro
  72.  cp1251              cp916               hungarian           sni-facet
  73.  cp1252              cp920               italian             sni-ibm
  74.  cp1253              cp923               japanese-roman      spanish
  75.  cp1254              cyrillic-iso        katakana            swedish
  76.  cp1255              danish              koi8                swiss
  77.  cp1256              dec-multinational   koi8r               transparent
  78.  cp1257              dec-special         koi8u               utf8
  79.  cp1258              dec-technical       latin1-iso
  80.  cp437               dg-international    latin2-iso
  81.  cp813               dg-linedrawing      latin3-iso
  82.  
  83. In terms of today's Console version of Kermit 95, this means that if you have
  84. Windows NT or 2000 and can select a fixed-pitch Unicode font for your command
  85. window, and if the remote computer uses any of the listed character sets,
  86. Kermit can (a) convert incoming characters to Unicode for display; and (b)
  87. convert keystrokes to the remote character-set for transmission.  Obviously
  88. this depends to a large extent on the Windows keyboard driver, but Kermit
  89. itself provides some assistance in the case of Latin-1, Latin-2, Cryillic, and
  90. Hebrew repertoires, in the form of special keyboard modes.
  91.  
  92. By the same token, if the remote host uses UTF-8 and you have Windows 9x
  93. or ME, K95 can convert between remote UTF-8 and the local Console code page.
  94.  
  95. Obviously many other combinations are possible, including the "trivial" one
  96. of UTF-8 on the host and Unicode on Windows.
  97.  
  98. In UNIX, C-Kermit:
  99.  
  100.   http://www.columbia.edu/kermit/ckermit.html
  101.  
  102. does approximately the same conversions, but the emulation is handled by
  103. the console driver or Xterm window:
  104.  
  105.   http://www.columbia.edu/kermit/ckfaq.html#term
  106.  
  107. - Frank
  108.